-
Notifications
You must be signed in to change notification settings - Fork 339
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enahncement/renamed request analyzer methods #749
Enahncement/renamed request analyzer methods #749
Conversation
@@ -179,7 +179,7 @@ public function getCurrentPostParameter() | |||
* Returns the get parameters | |||
* @return array | |||
*/ | |||
public function getCurrentGetParameter() | |||
public function getGetParameters() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we do this? It is wrong
These parameters are only used by the ExceptionHandler as far as I can tell.
Please add this change to UPGRADE.md requestAnalyzer is used in some projects in the Client services/controllers |
ack |
79eac64
to
e482170
Compare
Added CHANGELOG and UPGRADE. Ready to merge /cc @chirimoya |
@wachterjohannes @danrot can you approve this? then I will rebase and merge. (the test failure is due to the contact tests, not related). |
@dantleech i think someone of use should review it and merge it after release on monday! |
@@ -2,8 +2,10 @@ CHANGELOG for Sulu | |||
================== | |||
|
|||
* dev-develop | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we don't put new lines in these lists
If the tests are running after the rebase it is fine for me. |
- Renamed getCurrentMatchType - Renamed getCurrentWebspace - Renamed getCurrentPortal* - Renamed getCurrentSegment - Renamed getCurrentRedirect - Renamed getCurrentResourceLocator* - Renamed getCurrentGet|PostParameter - Renamed getCurrentAnalyticsKey
e482170
to
8c59f64
Compare
…lyzer_methods Enahncement/renamed request analyzer methods
This PR renames all of the methods in the RequestAnalyzerInterface which begin with
getCurrent
.Fixes #170